HTMLify
index.html
Views: 368 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | <!DOCTYPE html> <html lang="en"> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Pixel-EM Calculator</title> <!-- Google Font --> <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet" /> <!-- Stylesheet --> <link rel="stylesheet" href="style.css" /> </head> <body> <div class="container"> <h1>PX-EM Converter</h1> <div class="wrapper"> <label for="inp-base-px">Base Pixel Size:</label> <input type="number" id="inp-base-px" value="16" /> </div> <div class="wrapper"> <div class="inp-wrapper"> <label for="inp-px">PX:</label> <input type="number" id="inp-px" placeholder="px" /> </div> <div class="inp-wrapper"> <label for="inp-em">EM:</label> <input type="number" id="inp-em" placeholder="em" /> </div> </div> </div> <!-- Script --> <script src="./script.js"></script> </body> </html> |